home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / CDragAcrossTable 1.0b1 / ForgetRgn.c < prev    next >
Text File  |  1993-11-04  |  2KB  |  54 lines

  1. /******************************************************************************
  2.  ForgetRgn.c
  3.  
  4.     AUTHOR: Andrew_Gilmartin@Brown.Edu
  5.     MODIFIED: 93-11-04
  6.  
  7.     Copyright (C) 1993 by Brown University. All rights reserved.
  8.  
  9.     Permission is granted to any individual or institution to use, copy,
  10.     or redistribute the binary version of this software and its
  11.     documentation provided this notice and the copyright notices are
  12.     retained.  Permission is granted to any individual or non-profit
  13.     institution to use, copy, modify, or redistribute the source files
  14.     of this software provided this notice and the copyright notices are
  15.     retained.  This software may not be distributed for profit, either
  16.     in original form or in derivative works, nor can the source be
  17.     distributed to other than an individual or a non-profit institution.
  18.     Any  individual or group interested in seeing and/or using these
  19.     source files but who are prevented from doing so by the above
  20.     constraints should contact Don Wolfe, Vice-President for Computer 
  21.     Systems at Brown University, (401) 863-7247, for possible
  22.     software licensing of the source developed at Brown.
  23.  
  24.     Brown University and Andrew James Gilmartin make no representations
  25.     about the suitability of this software for any purpose.
  26.  
  27.      BROWN UNIVERSITY AND ANDREW JAMES GILMARTIN GIVE NO WARRANTY, EITHER
  28.     EXPRESS OR IMPLIED, FOR THE PROGRAM AND/OR DOCUMENTATION PROVIDED,
  29.     INCLUDING, WITHOUT LIMITATION, WARRANTY OF MERCHANTABILITY AND
  30.     WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE.
  31.  
  32. ******************************************************************************/
  33.  
  34. #include "ForgetRgn.h"
  35.  
  36.  
  37.  
  38. /******************************************************************************
  39.  __ForgetRgn
  40.  
  41.     Comments
  42. ******************************************************************************/
  43.  
  44. void __ForgetRgn( RgnHandle* rgnAddr )
  45. {
  46.     RgnHandle r = *rgnAddr;
  47.     if ( r )
  48.     {
  49.         *rgnAddr = NULL;
  50.         DisposeRgn( r);
  51.     }
  52.  
  53. } /* __ForgetRgn */
  54.